home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-21 | 474 b | 17 lines | [TEXT/ttxt] |
- --<<<
- -- Kaleida Labs, Inc.
- -- Field Guide to the ScriptX Language
- -- chapter 6, example 10
-
- -- adding a virtual iv to a class derived from TextPresenter
- class MyTextPresenter (TextPresenter) end
- method lineWidthGetter self {class MyTextPresenter} -> (
- return self.stroke.lineWidth
- )
- -- now create a test of lineWidthGetter
- object myTP (MyTextPresenter)
- stroke:blackBrush, fill:whiteBrush
- boundary:(new Rect x2:200 y2:200), target:"inconceivable"
- end
- myTP.lineWidth
- -->>>